home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1997 September / Macworld (1997-09).dmg / Shareware World / Comms & Internet / MondoMail / AppleScript & Mondo / Mondo Demo Script
Text File  |  1997-06-21  |  977b  |  27 lines

  1. --
  2. -- Edit the properties at the top of this script to point to your SMTP gateway
  3. -- and at your email address; compile and run the script. To send to multiple recipients, separate
  4. -- each address by commas (e.g., "wkw@acmetech.com,sales@acmetech.com")
  5. --
  6.  
  7. property pHost : "mail.snet.net"
  8. property pToUser : "you@yourDomain"
  9. property pFromUser : "you@yourDomain"
  10. property pSubject : "Hello from MondoMail!"
  11. (* Note: You can also send mail using the CC: and Bcc: fields. The syntax is as follows:
  12.     send mail "Body of message" to "user@host" CC "ccUser@host" BCC "bccUser" 
  13.     subject "This is a MondoMail Message" SMTP gateway "yourGateway"
  14. *)
  15.  
  16. try
  17.     tell application "Mondo Mail.fat"
  18.         
  19.         send mail "Test message" subject pSubject to pToUser from pFromUser SMTP gateway pHost ¬
  20.             -- CC "put CC: addresses here" BCC "put Bcc: addresses here"
  21.         
  22.     end tell
  23. on error msg number eNum
  24.     display dialog "The following error was returned from MondoMail: " & eNum & return & msg
  25. end try
  26.  
  27.